home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / DJGPP / DJ111M2.ZIP / tests / t16.m < prev    next >
Text File  |  1994-01-08  |  135b  |  10 lines

  1. #include "objc/Object.h"
  2.  
  3. main()
  4. {
  5.   id test;
  6.   test = [Object new];
  7.   printf("My class is %s\n", [test name]);
  8.   return 0;
  9. }
  10.